|
To access this command...この機能の見つけ方 |
The result is the absolute value of a complex number.
複素数の絶対値を返します。
IMABS("ComplexNumber")
IMABS("複素数")
ComplexNumber is a complex number that is entered in the form "x+yi" or "x+yj".
[PO-fuzzy@scalc\01.po] 複素数 は、「x+yi」または「x+yj」で入力される複素数です。
=IMABS("5+12j") returns 13.
=IMABS("5+12j") は、13 を返します。
The result is the imaginary coefficient of a complex number.
複素数の虚数係数を返します。
IMAGINARY("ComplexNumber")
IMAGINARY("複素数")
=IMAGINARY("4+3j") returns 3.
=IMAGINARY("4+3j") は、3 を返します。
The result is the integer power of a complex number.
複素数の整数乗を返します。
IMPOWER("ComplexNumber"; Number)
IMPOWER("複素数"; 数値)
Number is the exponent.
数値 は、指数です。
=IMPOWER("2+3i";2) returns -5+12i.
=IMPOWER("2+3i";2) は、-5+12i を返します。
The result is the argument (the phi angle) of a complex number.
複素数の引数 (偏角) を返します。
IMARGUMENT("ComplexNumber")
IMARGUMENT("複素数")
=IMARGUMENT("3+4j") returns 0.927295.
=IMARGUMENT("3+4j") は、0.927295 を返します。
The result is the cosine of a complex number.
複素数のコサインを返します。
IMCOS("ComplexNumber")
IMCOS("複素数")
=IMCOS("3+4j") returns -27.03-3.85i (rounded).
=IMCOS("3+4j") は、丸められた -27.03-3.85i を返します。
The result is the division of two complex numbers.
2 つの複素数の商を返します。
IMDIV("Numerator"; "Denominator")
IMDIV("分子"; "分母")
Numerator, Denominator are complex numbers that are entered in the form "x+yi" or "x+yj".
分子、分母 は、「x+yi」または「x+yj」で入力される複素数です。
=IMDIV("-238+240i";"10+24i") returns 5+12i.
=IMDIV("-238+240i";"10+24i") は、5+12i を返します。
The result is the power of e and the complex number. The constant e has a value of approximately 2.71828182845904.
複素数のべき乗 (オイラー数) を返します。定数 e の値は約 2.71828182845904 です。
IMEXP("ComplexNumber")
IMEXP("複素数")
=IMEXP("1+j") returns 1.47+2.29j (rounded).
=IMEXP("1+j") は、丸められた 1.47+2.29j を返します。
The result is the conjugated complex complement to a complex number.
複素数の複素共役を返します。
IMCONJUGATE("ComplexNumber")
IMCONJUGATE("複素数")
=IMCONJUGATE("1+j") returns 1-j.
=IMCONJUGATE("1+j") は、1-j を返します。
The result is the natural logarithm (to the base e) of a complex number. The constant e has a value of approximately 2.71828182845904.
複素数の自然対数を返します。定数 e の値は約 2.71828182845904 です。
IMLN("ComplexNumber")
IMLN("複素数")
=IMLN("1+j") returns 0.35+0.79j (rounded).
=IMLN("1+j") は、丸められた 0.35+0.79j を返します。
The result is the common logarithm (to the base 10) of a complex number.
複素数の常用対数(基数 10 に対する)を返します。
IMLOG10("ComplexNumber")
IMLOG10("複素数")
=IMLOG10("1+j") returns 0.15+0.34j (rounded).
=IMLOG10("1+j") は、丸められた 0.15+0.34j を返します。
The result is the binary logarithm of a complex number.
複素数の 2 を底とする対数を返します。
IMLOG2("ComplexNumber")
IMLOG2("複素数")
=IMLOG2("1+j") returns 0.50+1.13j (rounded).
=IMLOG2("1+j") は、丸められた 0.50+1.13j を返します。
The result is the product of up to 29 complex numbers.
29 個までの複素数の積を返します。
IMPRODUCT("ComplexNumber"; "ComplexNumber1"; ...)
IMPRODUCT("複素数 "; "複素数 1"; ...)
=IMPRODUCT("3+4j";"5-3j") returns 27+11j.
=IMPRODUCT("3+4j";"5-3j") は、27+11j を返します。
The result is the real coefficient of a complex number.
複素数の実数係数を返します。
IMREAL("ComplexNumber")
IMREAL("複素数")
=IMREAL("1+3j") returns 1.
=IMREAL("1+3j") は、1 を返します。
The result is the sine of a complex number.
複素数のサインを返します。
IMSIN("ComplexNumber")
IMSIN("複素数")
=IMSIN("3+4j") returns 3.85+27.02j (rounded).
=IMSIN("3+4j") は、丸められた 3.85+27.02j を返します。
The result is the subtraction of two complex numbers.
2 つの複素数の差を返します。
IMSUB("ComplexNumber1"; "ComplexNumber2")
IMSUB("複素数 1"; "複素数 2")
=IMSUB("13+4j";"5+3j") returns 8+j.
=IMSUB("13+4j";"5+3j") は、8+j を返します。
The result is the sum of up to 29 complex numbers.
29 個までの複素数の和を返します。
IMSUM("ComplexNumber1"; "ComplexNumber2"; ...)
IMSUM("複素数 1"; "複素数 2"; ...)
=IMSUM("13+4j";"5+3j") returns 18+7j.
=IMSUM("13+4j";"5+3j") は、18+7j を返します。
The result is the square root of a complex number.
複素数の平方根を返します。
IMSQRT("ComplexNumber")
IMSQRT("複素数")
=IMSQRT("3+4i") returns 2+1i.
=IMSQRT("3+4i") は、2+1i を返します。
The result is a complex number which is returned from a real coefficient and an imaginary coefficient.
実数係数と虚数係数を複素数に変換します。
COMPLEX(RealNum; INum; Suffix)
COMPLEX(実数; 虚数; 接尾辞)
RealNum is the real coefficient of the complex number.
RealNum は、複素数の実数係数です。
INum is the imaginary coefficient of the complex number.
INum は、複素数の虚数係数です。
Suffix is a list of options, "i" or "j".
接尾辞 は、オプション、「i」または「j」のリストです。
=COMPLEX(3;4;"j") returns 3+4j.
=COMPLEX(3;4;"j") は、3+4j を返します。
The result is the binary number for the octal number entered.
8 進数を 2 進数に変換します。
OCT2BIN(Number; Places)
OCT2BIN(数値;桁数)
Number is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
数値 は、8 進数です。数字は最大 10 桁にすることができます。最上位ビットは符号ビットで、それ以降のビットが値を返します。負の数字は、2 の補数として入力されます。
Places is the number of places to be output.
桁数 は、出力される桁数です。
=OCT2BIN(3;3) returns 011.
=OCT2BIN(3;3) は、011 を返します。
The result is the decimal number for the octal number entered.
8 進数を 10 進数に変換します。
OCT2DEC(Number)
OCT2DEC(数値)
Number is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
数値 は、8 進数です。数字は最大 10 桁にすることができます。最上位ビットは符号ビットで、それ以降のビットが値を返します。負の数字は、2 の補数として入力されます。
=OCT2DEC(144) returns 100.
=OCT2DEC(144) は、100 を返します。
The result is the hexadecimal number for the octal number entered.
8 進数を 16 進数に変換します。
OCT2HEX(Number; Places)
OCT2HEX(数値;桁数)
Number is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
数値 は、8 進数です。数字は最大 10 桁にすることができます。最上位ビットは符号ビットで、それ以降のビットが値を返します。負の数字は、2 の補数として入力されます。
Places is the number of places to be output.
桁数 は、出力される桁数です。
=OCT2HEX(144;4) returns 0064.
=OCT2HEX(144;4) は、0064 を返します。
Converts a value from one unit of measure to the corresponding value in another unit of measure. Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l.
ある単位の値を別の単位に換算します。単位は直接文字列でハイフンの間に入れるか、または参照として入力します。セルに単位を入力する場合は、次の表を参考にして大文字、小文字書きを正確に行なってください。たとえばリットルを示す小文字 l の前にはアポストロフィ ' を付けます。
|
Property
|
Units
|
|
Weight
|
g, sg, lbm, u, ozm, stone, ton, grain, pweight, hweight, shweight
|
|
Length
|
m, mi, Nmi, in, ft, yd, ang, Pica, ell, parsec
|
|
Time
|
yr, day, hr, mn, sec
|
|
Pressure
|
Pa, atm, mmHg, Torr, psi
|
|
Force
|
N, dyn, pond
|
|
Energy
|
J, e, c, cal, eV, HPh, Wh, BTU
|
|
Power
|
W, HP, PS
|
|
Field strength
|
T, ga
|
|
Temperature
|
C, F, K, Reau, Rank
|
|
Volume
|
l, tsp, tbs, oz, cup, pt, qt, gal, m3, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass
|
|
Area
|
m2, mi2, Nmi2, in2, ft2, yd2, ang2, Pica2, Morgen, ar, acre, ha
|
|
Speed
|
m/s, m/h, mph, kn, admkn
|
Each unit of measure can be preceded by a prefix character from the following list:
各単位の前には、次の表の単位記号を追加することができます:
|
Permitted prefix characters
|
|
|
10^(<0)
|
d, c, m, u, n, p, f, a, z, y
|
|
10^(>0)
|
e, h, k, M, G, T, P, E, Z, Y
|
|
Information units "bit" and "byte" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:
|
ki kibi 1024
Mi mebi 1048576
Gi gibi 1073741824
Ti tebi 1099511627776
Pi pebi 1125899906842620
Ei exbi 1152921504606850000
Zi zebi 1180591620717410000000
Yi yobi 1208925819614630000000000
|
CONVERT_ADD(Number; "FromUnit"; "ToUnit")
CONVERT_ADD(数値; "変換元単位"; "変換先単位")
Number is the number to be converted.
数値 は、変換される数字です。
FromUnit is the unit from which conversion is taking place.
変換元単位 は、変換元の単位です。
ToUnit is the unit to which conversion is taking place. Both units must be of the same type.
ToUnitは変換が行われる単位です。 両方の単位は同じ種類である必要があります。
Current list of CONVERT_ADD units in the OpenOffice.org Wiki.
[PO-fuzzy@scalc\01.po] ※※※未訳※※※
=CONVERT_ADD(10;"HP";"PS") returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS.
=CONVERT_ADD(10;"HP";"PS") は、小数点 2 位に丸められた 10.14 を返します。10 HP は、10.14 PS です。
=CONVERT_ADD(10;"km";"mi") returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3.
=CONVERT_ADD(10;"km";"mi") は、小数点 2 位に丸められた 6.21 を返します。10 キロメートルは、6.21 マイルです。k は、係数 10^3 で許可されている接頭辞です。
Returns the double factorial of a number.
数値の二重階乗を返します。
FACTDOUBLE(Number)
FACTDOUBLE(数値)
Returns Number !!, the double factorial of Number, where Number is an integer greater than or equal to zero.
Number の二乗階乗 Number!! を返します。Number はゼロ以上の整数です。
For even numbers FACTDOUBLE(n) returns:
偶数 FACTDOUBLE(n) は次の内容を返します。
2*4*6*8* ... *n
2*4*6*8* ... *n
For odd numbers FACTDOUBLE(n) returns:
奇数 FACTDOUBLE(n) は次の内容を返します。
1*3*5*7* ... *n
1*3*5*7* ... *n
FACTDOUBLE(0) returns 1 by definition.
定義上、FACTDOUBLE(0) は 1 を返します。
=FACTDOUBLE(5) returns 15.
=FACTDOUBLE(5) は、15 を返します。
=FACTDOUBLE(6) returns 48.
=FACTDOUBLE(6) は、48 を返します。
=FACTDOUBLE(0) returns 1.
=FACTDOUBLE(0) は、1 を返します。